real mode - определение. Что такое real mode
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое real mode - определение

Найдено результатов: 2369
Real mode         
OPERATING MODE OF ALL X86-COMPATIBLE CPUS
Realmode; Real Mode; Real-address mode; Real address mode; True real mode; Real-mode
Real mode, also called real address mode, is an operating mode of all x86-compatible CPUs. The mode gets its name from the fact that addresses in real mode always correspond to real locations in memory.
real mode         
OPERATING MODE OF ALL X86-COMPATIBLE CPUS
Realmode; Real Mode; Real-address mode; Real address mode; True real mode; Real-mode
An operating mode of Intel 80x86 processors. The opposite of protected mode. (1995-03-29)
Unreal mode         
VARIANT OF REAL MODE IN X86 COMPUTING
Big real mode; Flat real mode; Paged real mode; Huge real mode; 32-bit real mode; Big unreal mode; Huge unreal mode; Real big mode; Voodoo Memory Manager; Voodoo Memory Management; Voodoo Memory Management System; Real Big Mode; Big Real Mode; Flat Real Mode; HugeRealMode; HugeRealMode driver; Pseudo real execution mode; Unreal execution mode; 386 real big mode; 386 Real Big Mode; 386 big mode; 386 Big Mode; Real-mode flat memory model; Pseudo-real execution mode; Pseudo real mode; Pseudo-real mode; Unreal Mode
In x86 computing, unreal mode, also big real mode, huge real mode, flat real mode, or voodoo mode is a variant of real mode, in which one or more segment descriptors has been loaded with non-standard values, like 32-bit limits allowing access to the entire memory. Contrary to its name, it is not a separate addressing mode that the x86 processors can operate in.
Virtual 8086 mode         
FEATURE OF SPECIFIC MICROPROCESSOR
VM86; Virtual 8086 Mode; Virtual real mode; Virtual 8086-mode; Virtual x86 mode; V86; V86 mode; V86-mode; Virtual 8086 Mode Extensions; Virtual Mode Extensions; Intel Virtual Mode Extensions; Pentium Virtual Mode Extensions; Pentium VME; Intel VME; Virtual 8086 Mode Enhancements; Intel Virtual 8086 Mode Enhancements
In the 80386 microprocessor and later, virtual 8086 mode (also called virtual real mode, V86-mode, or VM86) allows the execution of real mode applications that are incapable of running directly in protected mode while the processor is running a protected mode operating system. It is a hardware virtualization technique that allowed multiple 8086 processors to be emulated by the 386 chip.
Airplane mode         
  • Airplane mode icon
  • Airplane mode in a laptop keyboard
  • Smartphone with airplane mode turned on
SETTING AVAILABLE ON MANY ELECTRONIC DEVICES
Flight Mode; Offline Mode; Flight mode; Airplane Mode; Plane mode; Aeroplane mode; Aeroplane Mode
Airplane mode (also known as aeroplane mode, flight mode, offline mode, or standalone mode) is a setting available on smartphones and other portable devices. When activated, this mode suspends the device's radio-frequency (RF) signal transmission technologies (i.
Mode (music)         
  • scale]]
  • subtonium]]'' (tone below the final).
  • The [[introit]] ''Jubilate Deo'', from which [[Jubilate Sunday]] gets its name, is in Mode 8.
  • Interval sequences for each of the modern modes, showing the relationship between the modes as a shifted grid of intervals.
  • p=255}}</ref>
TYPE OF MUSICAL SCALE
Musical modes; Greek mode; Modal music; Properties of musical modes; Ecclesiastical mode; Eastern modes; Modes musical; Modes (music); Modality (music); Modal scale; Musical mode
In music theory, the term mode or modus is used in a number of distinct senses, depending on context.
Protected mode         
  • Virtual segments of 80286
  • Paging (on Intel 80386) with page size of 4K
  • An Intel 80386 microprocessor
  • Example of privilege ring usage in an operating system using all rings
  • Common method of using paging to create a virtual address space
OPERATIONAL MODE OF X86-COMPATIBLE CENTRAL PROCESSING UNITS
Pmode; Protected Virtual Address Mode; Protected Mode; Protected virtual address mode; Protected-mode; 286 protected mode
In computing, protected mode, also called protected virtual address mode, is an operational mode of x86-compatible central processing units (CPUs). It allows system software to use features such as virtual memory, paging and safe multi-tasking designed to increase an operating system's control over application software.
protected mode         
  • Virtual segments of 80286
  • Paging (on Intel 80386) with page size of 4K
  • An Intel 80386 microprocessor
  • Example of privilege ring usage in an operating system using all rings
  • Common method of using paging to create a virtual address space
OPERATIONAL MODE OF X86-COMPATIBLE CENTRAL PROCESSING UNITS
Pmode; Protected Virtual Address Mode; Protected Mode; Protected virtual address mode; Protected-mode; 286 protected mode
An operating mode of Intel 80x86 processors. The opposite of real mode. The Intel 8088, Intel 8086, Intel 80188 and Intel 80186 had only real mode, processors beginning with the Intel 80286 feature a second mode called protected mode. In real mode, addresses are generated by adding an address offset to the value of a segment register shifted left four bits. As the segment register and address offset are 16 bits long this results in a 20-bit address. This is the origin of the one megabyte (2^20) limit in real mode. There are 4 segment registers on processors before the {Intel 80386}. The 80386 introduced two more segment registers. Which segment register is used depends on the instruction, on the addressing mode and of an optional instruction prefix which selects the segment register explicitly. In protected mode, the segment registers contain an index into a table of segment descriptors. Each segment descriptor contains the start address of the segment, to which the offset is added to generate the address. In addition, the segment descriptor contains memory protection information. This includes an offset limit and bits for write and read permission. This allows the processor to prevent memory accesses to certain data. The operating system can use this to protect different processes' memory from each other, hence the name "protected mode". While the standard register set belongs to the CPU, the segment registers lie "at the boundary" between the CPU and MMU. Each time a new value is loaded into a segment register while in protected mode, the corresponding descriptor is loaded into a descriptor cache in the (Segment-)MMU. On processors before the Pentium this takes longer than just loading the segment register in real mode. Addresses generated by the CPU (which are segment offsets) are passed to the MMU to be checked against the limit in the segment descriptor and are there added to the segment base address in the descriptor to form a linear address. On a 80386 or later, the linear address is further processed by the paged MMU before the result (the physical address) appears on the chip's address pins. The 80286 doesn't have a paged MMU so the linear address is output directly as the physical address. The paged MMU allows for arbitrary remapping of four klilobyte memory blocks (pages) through a translation table stored in memory. A few entries of this table are cached in the MMU's Translation Lookaside Buffer to avoid excessive memory accesses. After processor reset, all processors start in real mode. Protected mode has to be enabled by software. On the 80286 there exists no documented way back to real mode apart from resetting the processor. Later processors allow switching back to real mode by software. Software which has been written or compiled to run in protected mode must only use segment register values given to it by the operating system. Unfortunately, most application code for MS-DOS, written before the 286, will fail in protected mode because it assumes real mode addressing and writes arbitrary values to segment registers, e.g. in order to perform address calculations. Such use of segment registers is only really necessary with data structures that are larger than 64 kilobytes and thus don't fit into a single segment. This is usually dealt with by the huge memory model in compilers. In this model, compilers generate address arithmetic involving segment registers. A solution which is portable to protected mode with almost the same efficiency would involve using a table of segments instead of calculating new segment register values ad hoc. To ease the transition to protected mode, Intel 80386 and later processors provide "virtual 86 mode". (1995-03-29)
Legacy mode         
OPERATING MODE OF A COMPUTING SYSTEM DEDICATED TO BACKWARDS COMPATIBILITY
Legacy Mode
In computing, legacy mode is a state in which a computer system, component, or software application behaves in a way that is different from its standard operation in order to support older software, data, or expected behavior. It differs from backward compatibility in that an item in legacy mode will often sacrifice newer features or performance, or be unable to access data or run programs it normally could, in order to provide continued access to older data or functionality.
Normal mode         
  •  A flash photo of a cup of black coffee vibrating in normal modes
  • 300px
  • sinusoidal]] density fluctuations (or atomic displacement waves).
  • A mode shape of a drum membrane, with nodal lines shown in pale green
  • Excitation of normal modes in a drop of water during the [[Leidenfrost effect]]
PATTERN OF MOTION IN WHICH ALL PARTS OF THE SYSTEM MOVE SINUSOIDALLY WITH THE SAME FREQUENCY AND WITH A FIXED PHASE RELATION
Normal modes; Normal Mode; Vibrational modes; Vibrational mode; Modes of vibration; Mode of vibration; Harmonic mode; Fundamental Mode; Characteristic frequency; Mode shape; Fundamental mode; Principal mode; Oscillation mode; Oscillation Mode; Vibration mode; Eigenmodes; Mode of oscillation; Normal mode of vibration; Eigentones; Eigentone; Normal Modes
A normal mode of a dynamical system is a pattern of motion in which all parts of the system move sinusoidally with the same frequency and with a fixed phase relation. The free motion described by the normal modes takes place at fixed frequencies.